home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / NDK / NDK_3.5 / Examples / Printer / HP_DeskJet_CMYK / global.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-10-30  |  1.6 KB  |  67 lines

  1. /*
  2.  * $Id: global.h 44.3 1999/09/16 09:25:15 olsen Exp olsen $
  3.  *
  4.  * :ts=8
  5.  *
  6.  * COPYRIGHT:
  7.  *
  8.  *   Unless otherwise noted, all files are Copyright (c) 1999 Amiga, Inc.
  9.  *   All rights reserved.
  10.  *
  11.  * DISCLAIMER:
  12.  *
  13.  *   This software is provided "as is". No representations or warranties
  14.  *   are made with respect to the accuracy, reliability, performance,
  15.  *   currentness, or operation of this software, and all use is at your
  16.  *   own risk. Neither Amiga nor the authors assume any responsibility
  17.  *   or liability whatsoever with respect to your use of this software.
  18.  *
  19.  */
  20.  
  21. #include <exec/memory.h>
  22.  
  23. #include <devices/prtgfx.h>
  24. #include <devices/prtbase.h>
  25. #include <devices/printer.h>
  26.  
  27. #include <libraries/locale.h>
  28.  
  29. #include <clib/exec_protos.h>
  30. #include <clib/utility_protos.h>
  31. #include <clib/locale_protos.h>
  32. #include <clib/macros.h>
  33.  
  34. #include <pragmas/exec_sysbase_pragmas.h>
  35. #include <pragmas/utility_pragmas.h>
  36. #include <pragmas/locale_pragmas.h>
  37.  
  38. #define USE_BUILTIN_MATH
  39. #include <string.h>
  40. #include <stdarg.h>
  41.  
  42. /****************************************************************************/
  43.  
  44. #define NUM_ENTRIES(t) (sizeof(t) / sizeof(t[0]))
  45.  
  46. /****************************************************************************/
  47.  
  48. #define OK (0)
  49. #define ERROR (-1)
  50.  
  51. /****************************************************************************/
  52.  
  53. extern void kprintf(const char *,...);
  54.  
  55. /****************************************************************************/
  56.  
  57. #include "compression.h"
  58. #include "data.h"
  59. #include "density.h"
  60. #include "dospecial.h"
  61. #include "init.h"
  62. #include "locale.h"
  63. #include "printertag.h"
  64. #include "render.h"
  65. #include "sprintf.h"
  66. #include "transfer.h"
  67.